{% extends "base.html" %} {% block title %}Q&A - Answer Questions - Quick Care Connect{% endblock %} {% block content %}

Questions to Answer

Answer questions in your category: {{ doctor_category }}

Note: You can only see and answer questions that match your medical category. Patients need your expert advice!
{% if unanswered_questions %}
Unanswered Questions ({{ unanswered_questions|length }})
{% for question in unanswered_questions %}
{{ question.title }}
{{ question.category }} {{ 'Answered' if question.is_answered else 'Unanswered' }} {% if question.is_stale %} {{ question.pending_days }}d pending {% endif %} {% if question.answers.count() > 0 %} {{ question.answers.count() }} answer{{ 's' if question.answers.count() != 1 }} {% endif %}

{{ question.content[:200] }}{% if question.content|length > 200 %}...{% endif %}

Asked by {{ question.patient.user.name }}
{{ question.created_at.strftime('%B %d, %Y at %I:%M %p') }}
{% endfor %} {% endif %} {% if answered_questions %}
Already Answered ({{ answered_questions|length }})
{% for question in answered_questions %}
{{ question.title }}
{{ question.category }} Answered {{ question.answers.count() }} answer{{ 's' if question.answers.count() != 1 }}

{{ question.content[:200] }}{% if question.content|length > 200 %}...{% endif %}

{% endfor %} {% endif %} {% if not questions %}

No Questions Available

There are currently no unanswered questions in your category ({{ doctor_category }}). Check back later or patients can ask new questions anytime!

View All Questions
{% endif %}
{% endblock %}